home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / libg_261.zip / libg_261 / libg++ / gperf / Makefile.in < prev    next >
Makefile  |  1994-05-30  |  1KB  |  44 lines

  1. # Copyright (C) 1989, 1992, 1993 Free Software Foundation, Inc.
  2. # written by Douglas C. Schmidt (schmidt@ics.uci.edu)
  3. # This file is part of GNU GPERF.
  4. # GNU GPERF is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 1, or (at your option)
  7. # any later version.
  8. # GNU GPERF is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with GNU GPERF; see the file COPYING.  If not, write to
  14. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  15.  
  16. srcdir = .
  17.  
  18. #### package, host, target, and site dependent Makefile fragments come in here.
  19. ##
  20.  
  21. .PHONY: src_all
  22. src_all:
  23.     @echo "cd src ; make ... all"
  24.     @rootme=`pwd`/ ; export rootme ; cd src ; \
  25.         $(MAKE) $(FLAGS_TO_PASS) all
  26.  
  27. .PHONY: install
  28. install:
  29.     rootme=`pwd`/ ; export rootme ; cd src ; \
  30.         $(MAKE) $(FLAGS_TO_PASS) install
  31.     $(INSTALL_DATA) $(srcdir)/gperf.1 $(man1dir)/gperf.1
  32.  
  33. distrib: force
  34.     cd ..; rm -f gperf.tar.Z; tar cvf gperf.tar gperf; compress gperf.tar;\
  35.            uuencode gperf.tar.Z < gperf.tar.Z > GSHAR
  36.  
  37. .PHONY: shar
  38. shar: force
  39.     cd ..; makekit -ngperf ./gperf ./gperf/* ./gperf/src/* ./gperf/tests/*
  40.